home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / program / tsetguid.zip / TEA / SET / SAMPLE / SLIDERDE.JAV < prev    next >
Text File  |  1997-02-27  |  2KB  |  59 lines

  1. /*
  2.  * Copyright (c) 1996-1997, InetSoft Technology Corp, All Rights Reserved.
  3.  *
  4.  * The software and information contained herein are copyrighted and 
  5.  * proprietary to InetSoft Technology Corp. This software is furnished 
  6.  * pursuant to a written license agreement and may be used, copied, 
  7.  * transmitted, and stored only in accordance with the terms of such 
  8.  * license and with the inclusion of the above copyright notice. Please 
  9.  * refer to the file "COPYRIGHT" for further copyright and licensing 
  10.  * information. This software and information or any other copies 
  11.  * thereof may not be provided or otherwise made available to any 
  12.  * other person. 
  13.  */
  14. package tea.set.sample;
  15.  
  16. import tea.set.*;
  17. import java.awt.*;
  18. import java.awt.event.*;
  19. import java.applet.*;
  20.  
  21. /**
  22.  * This is a demo applet to show using tea.set.Slider.
  23.  *
  24.  * @see Slider
  25.  * @version 1.3, 01/31/97
  26.  * @author InetSoft Technology Corp
  27.  */
  28. public class SliderDemo extends Applet {
  29.    public void init() {
  30.       setLayout(new GridLayout(4, 1));
  31.       
  32.       sld1 = new Slider();
  33.       lb1 = new Label("0", Label.CENTER);
  34.       sld1.addAdjustmentListener(new AdjustmentListener() {
  35.      public void adjustmentValueChanged(AdjustmentEvent e) {
  36.         lb1.setText(Integer.toString(sld1.getValue()));
  37.      }
  38.       });
  39.       
  40.       add(lb1);
  41.       add(sld1);
  42.       
  43.       sld2 = new Slider(0, 50, Adjustable.HORIZONTAL);
  44.       sld2.setStyle(Slider.SCALE_BAR);
  45.       lb2 = new Label("0", Label.CENTER);
  46.       sld2.addAdjustmentListener(new AdjustmentListener() {
  47.      public void adjustmentValueChanged(AdjustmentEvent e) {
  48.         lb2.setText(Integer.toString(sld2.getValue()));
  49.      }
  50.       });
  51.       
  52.       add(lb2);
  53.       add(sld2);
  54.    }
  55.    
  56.    private Slider sld1, sld2;
  57.    private Label lb1, lb2;
  58. }
  59.